| 12345678910111213141516171819202122 |
- import PlaceholderPage from "@/components/placeholders/PlaceholderPage";
- /**
- * /:branch/search
- *
- * Important:
- * - This is a static segment under [branch].
- * - It must exist explicitly, so "search" is not interpreted as [year].
- *
- * Next.js 15+ treats `params` as an async value (Promise) for dynamic routes.
- */
- export default async function BranchSearchPage({ params }) {
- const resolvedParams = await params;
- return (
- <PlaceholderPage
- title="Search"
- description="Search placeholder. Real search UI will be implemented in a later ticket."
- params={resolvedParams}
- />
- );
- }
|